body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #121212;
  color: #e0e0e0;
}
header {
  background-color: #1e1e1e;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
nav a {
  color: #e0e0e0;
  text-decoration: none;
  margin: 0 15px;
  transition: color 0.3s ease;
}
nav a:hover {
  color: #00bcd4;
}
.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background-color: #2a2a2a;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.3);
  z-index: 1;
  min-width: 180px;
}
.dropdown-content a {
  display: block;
  padding: 12px 16px;
}
.dropdown:hover .dropdown-content {
  display: block;
}
main {
  padding: 40px;
  max-width: 800px;
  margin: auto;
}
footer {
  background-color: #1e1e1e;
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
  color: #777;
}
h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}
p {
  line-height: 1.6;
}
ul {
  list-style: none;
  padding: 0;
}
ul li {
  margin-bottom: 10px;
}
a {
  color: #00bcd4;
}
a:hover {
  text-decoration: underline;
}
header div strong a {
    text-decoration: none; /* Remove the default underline */
    color: #e0e0e0; /* Set the default color to your light gray */
}

header div strong a:hover {
    color: #00bcd4; /* Apply the teal hover color */
    text-decoration: underline; /* Add the underline back on hover */
}
/* Projects Page Styles - Dark Theme */
.intro {
    font-size: 1.1em;
    color: #a0a0a0;
    margin-bottom: 2rem;
    font-style: italic;
}

.project-category {
    margin-bottom: 3rem;
}

.project-category h2 {
    color: #e0e0e0;
    border-bottom: 2px solid #00bcd4;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.5em;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.project-card {
    background: #1e1e1e;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}

.project-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 188, 212, 0.1);
    border-color: #00bcd4;
}

.project-card h3 {
    margin: 0 0 1rem 0;
    color: #e0e0e0;
}

.project-card h3 a {
    color: #00bcd4;
    text-decoration: none;
    font-size: 1.2em;
}

.project-card h3 a:hover {
    text-decoration: underline;
}

.project-card p {
    margin: 0 0 1rem 0;
    line-height: 1.6;
    color: #b0b0b0;
}

.project-tag {
    display: inline-block;
    background: #00bcd4;
    color: #121212;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: bold;
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.project-tag.paper {
    background: #9c27b0;
    color: white;
}

.research-paper {
    border-left: 4px solid #9c27b0;
}

.research-paper h3 a {
    color: #e1bee7;
}

.github-link {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: #1e1e1e;
    border: 1px solid #333;
    border-radius: 8px;
}

.github-link a {
    color: #00bcd4;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.1em;
}

.github-link a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .project-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .project-card {
        padding: 1rem;
    }
    
    .project-tag {
        position: static;
        margin-top: 0.5rem;
    }
    
    .project-category h2 {
        font-size: 1.3em;
    }
/* Transparency Page Styles - Dark Theme */
.last-updated {
    color: #777;
    margin-bottom: 1.5rem;
}

.intro-text {
    font-size: 1.1em;
    color: #a0a0a0;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.transparency-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #333;
}

.transparency-section:last-child {
    border-bottom: none;
}

.transparency-section h2 {
    color: #e0e0e0;
    border-bottom: 2px solid #00bcd4;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.4em;
}

.transparency-section h3 {
    color: #00bcd4;
    margin-bottom: 0.8rem;
    font-size: 1.1em;
}

/* Color Analysis Section */
.color-analysis {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}

.color-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #1e1e1e;
    border-radius: 8px;
    border: 1px solid #333;
}

.color-swatch {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #555;
    flex-shrink: 0;
}

.color-description {
    flex: 1;
    line-height: 1.6;
}

/* Highlighting important terms */
.highlight {
    color: #00bcd4;
    font-weight: bold;
    background: rgba(0, 188, 212, 0.1);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
}

.note {
    background: #1e1e1e;
    border-left: 4px solid #00bcd4;
    padding: 1rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
    color: #b0b0b0;
    font-style: italic;
}

/* Layout Points Section */
.layout-points {
    display: grid;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.layout-point {
    background: #1e1e1e;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #333;
    transition: border-color 0.3s ease;
}

.layout-point:hover {
    border-color: #00bcd4;
}

/* Highlight Section */
.highlight-section {
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.05), rgba(0, 188, 212, 0.02));
    border: 1px solid rgba(0, 188, 212, 0.2);
    padding: 2rem;
    border-radius: 12px;
}

.warning-box {
    background: rgba(156, 39, 176, 0.1);
    border: 2px solid #9c27b0;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.warning-box p {
    margin: 0;
    color: #e1bee7;
}

/* Priming Grid */
.priming-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.priming-card {
    background: #1e1e1e;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #333;
    text-align: center;
    transition: transform 0.2s ease, border-color 0.3s ease;
}

.priming-card:hover {
    transform: translateY(-2px);
    border-color: #00bcd4;
    box-shadow: 0 4px 12px rgba(0, 188, 212, 0.1);
}

/* Meta Section */
.meta-section {
    background: rgba(156, 39, 176, 0.05);
    border: 1px solid rgba(156, 39, 176, 0.2);
    padding: 2rem;
    border-radius: 12px;
}

.meta-effects {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}

.meta-effect {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1e1e1e;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #9c27b0;
}

.effect-name {
    font-weight: bold;
    color: #e1bee7;
}

.effect-description {
    color: #b0b0b0;
    font-style: italic;
    text-align: right;
    flex: 1;
    margin-left: 1rem;
}

.meta-note {
    color: #e1bee7;
    font-style: italic;
    margin-top: 1.5rem;
}

/* Experiment Section */
.experiment-section {
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.1), rgba(156, 39, 176, 0.05));
    border: 2px solid #00bcd4;
    padding: 2rem;
    border-radius: 12px;
}

.experiment-box {
    background: #1e1e1e;
    border: 2px solid #00bcd4;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    text-align: center;
}

.experiment-box p {
    margin: 0;
    color: #00bcd4;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .color-item {
        flex-direction: column;
        text-align: center;
    }
    
    .color-swatch {
        align-self: center;
    }
    
    .priming-grid {
        grid-template-columns: 1fr;
    }
    
    .meta-effect {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .effect-description {
        text-align: center;
        margin-left: 0;
    }
    
    .transparency-section {
        padding: 1rem;
        margin-bottom: 2rem;
    }
}

